home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / program / mui32usr.lha / MUI / Docs / Changes next >
Text File  |  1996-01-30  |  34KB  |  943 lines

  1. ************************************************************************
  2.  
  3.                         MUI - MagicUserInterface
  4.  
  5.                 (c) Copyright 1992-96 by Stefan Stuntz
  6.  
  7.         This file describes all changes since version 1.0 of MUI
  8.  
  9. ************************************************************************
  10.  
  11.  
  12. ------------------------------------------------------------------------
  13. Version 3.2 (31-Jan-96)                      (muimaster.library V13.686)
  14. ------------------------------------------------------------------------
  15.  
  16. * MINOR SASG UPDATE *
  17.  
  18. Changes for users:
  19.  
  20. - Rewrote some small critical parts in Assembler, MUI 3.2 should run
  21.   significantly faster than previous versions.
  22.  
  23. - Enhanced listview scrolling speed.
  24.  
  25. - Created custom root class which uses memory pools to allocate
  26.   objects. Reduces memory fragmentation and speeds up object
  27.   creation about 100%.
  28.  
  29. - Optmizied scrolling in virtual groups.
  30.  
  31. - Numeric buttons didn't draw their disabled state.
  32.  
  33. - Implemented keyboard control for scrollgroups.
  34.  
  35. - Implemented presets for Coloradjust objects. Presets are read
  36.   from mui:Presets/rgb.txt.
  37.  
  38. - Fixed 16 bytes memory leak.
  39.  
  40. - Fixed redrawing of prop gadgets.
  41.  
  42. - Fixed prop gadgets in listviews with lots of entries.
  43.  
  44. - Enhanced positioning of help bubble.
  45.  
  46. - Help bubbles and Drag&Drop messed up the display if CyberGraphX was
  47.   installed and the used screen was an ECS/AGA display mode with
  48.   interleaved bitmaps. Note well: If your bubbles are broken on
  49.   CyberGraphX screenmodes, be sure to use the *latest* version of
  50.   CyberGraphX from aminet.
  51.  
  52. - Rewrote PSI palette handling completely. Should be much easier to
  53.   use now. Included color presets as popup menus on the color page.
  54.  
  55. - Heavily reduced memory usage of string objects, optimized overall
  56.   memory consumption.
  57.  
  58. Changes for programmers:
  59.  
  60. - Implemented MUIA_List_PuddleSize, MUIA_List_ThreshSize and
  61.   MUIA_List_MemPool to control the pool created by a list object.
  62.  
  63. - Implemented scroll gadgets in window borders. See autodocs
  64.   of MUIA_Window_UseLeftBorderScroller, MUIA_Window_UseRightBorderScroller,
  65.   MUIA_Window_UseBottomBorderScroller and
  66.   MUIA_Prop_UseWinBorder, MUIA_Scrollgroup_UseWinBorder
  67.   for details.
  68.  
  69. - Implemented MUIM_Pendisplay_SetXXX methods to adjust defaults
  70.   of a pendisplay object.
  71.  
  72. - Implememted a timer in application class. See TIMER section
  73.   of MUIM_Application_AddInputHandler for details.
  74.  
  75. - Implemented MUIA_Application_WindowList. Getting this attribute
  76.   returns a pointer to a struct List which contains an applications
  77.   child windows. Use intuition.library/NextObject() to parse.
  78.  
  79. - Fixed get() of MUIA_Application_ForceQuit.
  80.  
  81. - Fixed MUIA_Text_HiChar with bold & italic texts.
  82.  
  83. - Fixed \033I[2,rrrrrrrr,gggggggg,bbbbbbbb] display bug which was
  84.   introduced in MUI 3.1.
  85.  
  86. - Reimplemented MUIA_Slider_Quiet.
  87.  
  88. - Implemented ESC P escape sequence to change pen for text strings.
  89.   Usage is like "This is \33P[17]color 17". Be sure to ObtainPen()
  90.   pens used like this.
  91.  
  92. - Fixed bug when bubbles or popup menus were used on windows
  93.   which's root object was not a group class object. Note that since MUI
  94.   plays some special tricks here, it is generally better to have the
  95.   root object of a window be a simple group class anyway. If you dont
  96.   need such a group in your window, use
  97.   MUIA_Window_RootObject, VGroup, Child, MyObj, End
  98.   instead of
  99.   MUIA_Window_RootObject, MyObj
  100.  
  101. - Fixed MUIM_Application_ShowHelp with V39 AmigaGuide library and
  102.   different help files.
  103.  
  104. - Fixed a very bad bug introduced in 3.1 that made applications crash
  105.   when MUIA_ShowMe was used on objects who's parent was the windows
  106.   root object.
  107.  
  108. - When an object is dropped somewhere outside a valid container,
  109.   the application object will receive a MUIM_DragDrop method. This
  110.   allows programs to take actions when MUI objects are e.g.
  111.   dropped on the Workbench.
  112.  
  113. - Fixed coordinate parameters of MUIM_DragDrop.
  114.  
  115. - Fixed OM_GET for MUIA_String_BufferPos and MUIA_String_DispPos.
  116.  
  117. - MUI 3.1 would accidently reopen windows which were closed during
  118.   an applications iconified state.
  119.  
  120. - Improved behaviour of MUIM_Application_Save/Load. You can override
  121.   the new methods MUIM_Export and MUIM_Import to export/import custom
  122.   data from your custom classes.
  123.  
  124. - Implemented MUIA_FillArea to avoid flickering when drawing custom classes.
  125.  
  126.  
  127.  
  128. ------------------------------------------------------------------------
  129. Version 3.1 (21-Nov-95)                      (muimaster.library V12.268)
  130. ------------------------------------------------------------------------
  131.  
  132. * MAJOR SASG UPDATE *
  133.  
  134. This is a major update. Please look at the information texts
  135. in the preferences program for information on how to update your
  136. registration.
  137.  
  138. Note: Almost everything in MUI changed, so this time, the changes
  139. section does not describe everything in detail but is just like a
  140. short overview.
  141.  
  142. Changes for users:
  143.  
  144. - To find a compromise between flexibility and resource usage, MUI 3
  145.   uses a completely new memory management concept. A lot of extra
  146.   features which are not necessarily needed to run applications have
  147.   been moved into external libraries. Most of these libraries are not
  148.   even loaded if MUI runs with its default settings. With this new
  149.   memory management, users have the the ability to control MUIs memory
  150.   usage by using appropriate configurations.
  151.  
  152. - MUI's speed has increased considerably compared with earlier versions.
  153.   This speedup depends on the machine MUI is running on: the slower the
  154.   Amiga, the more noticeable is the speed increase. Especially drawing
  155.   of GUI elements on ECS/AGA machines is a lot faster now due to a new
  156.   way of rendering. Even if a 7 MHz computer still can't be considered as
  157.   an optimum MUI platform, applications should perform a lot better now.
  158.  
  159. - The slow and bulky preferences system was completely rewritten, the
  160.   new way of handling settings is a lot clearer and more straight
  161.   forward. An applications local configuration is no longer adjusted
  162.   from the global preferences editor. Instead, all MUI applications
  163.   offer a way to open their private MUI settings window. This makes MUI
  164.   look more like an integral part of a program. Furthermore, the
  165.   settings windows are better structurized and offer easier access to
  166.   all configuration option.
  167.  
  168. - Public screen handling moved to an external program called "PSI"
  169.   (Public Screen Inspector). PSI fixes all known bugs of MUI 2.x
  170.   screens, is more easy to use and offers a few new features.
  171.   Furthermore, PSI can also be used independantly as screen manager for
  172.   non-MUI programs.
  173.  
  174. - All accompanying MUI programs make extensive use of brandnew MUI 3
  175.   programming features like dynamic object creations, balancing groups,
  176.   popup menus, Drag&Drop or Help bubbles. All those things have been
  177.   available on other operating systems for a long time, its about time
  178.   to get them to the Amiga.
  179.  
  180. Changes for programmers:
  181.  
  182. - Added so called "input handlers" which allow custom classes to
  183.   directly react on signal bits. See MUIM_AddInputHandler for details.
  184.  
  185. - You are encouraged to include a Settings/MUI... menu in your
  186.   application that does nothing but simply send a
  187.   MUIM_Application_OpenConfigWindow to your application object (see
  188.   psi.c).
  189.  
  190. - Implemented context sensitive popup menus. See autodocs of
  191.   MUIA_ContextMenu for details.
  192.  
  193. - Implemented custom layout groups. Positioning of children is
  194.   completely under programmers control. See new demo CustomLayout and
  195.   autodocs of MUIA_Group_LayoutHook for details.
  196.  
  197. - Changed layout behaviour of virtual groups. This should makes them
  198.   much more useful, especially together with the new custom layout
  199.   hooks. Performance was also increased. See autodocs of Virtgroup class
  200.   and Scrollgroup class for details.
  201.  
  202. - Implemented a Poppen class and new muimaster.library functions
  203.   MUI_ObtainPen() and MUI_ReleasePen(). Use this if your application
  204.   needs custom pens. See autodocs and demo Class2.c for details.
  205.  
  206. - Improved notification on MUIA_Window_InputEvent. See autodocs for
  207.   details.
  208.  
  209. - Fixed protection bits in dirlist objects MUIM_Dirlist_GetEntry.
  210.  
  211. - Implemented help bubbles. See MUIA_ShortHelp for details.
  212.  
  213. - Implemented MUIA_Parent attribute to ask an object about its parent
  214.   group.
  215.  
  216. - Included full source code of the new screen manager for educational
  217.   purposes. This little tool shows how to write good MUI programs. It
  218.   demonstrates several kinds of sub classes (windows, groups, lists),
  219.   drag & drop handling, dynamic object creation & linking, multi
  220.   threading, localization, help bubbles and much more. The screen
  221.   manager acts as a kind of standard MUI application, you can find lots
  222.   of important techniques and guidelines of MUI programming here. Forget
  223.   about the other demos, if you want to learn something, take the screen
  224.   manager. I want all of you to have a close look at the source and
  225.   drop your old-fashioned way of "ReturnID"-programming immediately.
  226.   It's time to get real object-oriented NOW! Don't be afraid of sub
  227.   classes, there isn't anything easier to work with.
  228.  
  229. - Implemented "disappearing" objects. Whenever a window is too small,
  230.   these objects are simply left out during layout calculations according
  231.   to their disappear level. This allows creation of complex and nice
  232.   GUIs while still remaining compatible with crappy 640x200 screens. See
  233.   autodocs of MUIA_HorizDisappear and MUIA_VertDisappear for details.
  234.  
  235. - Implemented "balancing" groups. See the Balancing demo and the
  236.   autodocs of the new BalanceClass for details.
  237.  
  238. - Implemented MUIM_Application_CheckRefresh method. You should call it
  239.   e.g. from IntuiMsgHooks of ASL-Requesters to ensure correct refreshing
  240.   of simple refresh type MUI windows. See autodocs and screen manager
  241.   source code for details.
  242.  
  243. - Implemented possibility to add objects to groups dynamically. See
  244.   autodocs of MUIM_Group_InitChange & MUIM_Group_ExitChange and screen
  245.   manager source code for details.
  246.  
  247. - Included simple brush2c program to help creating input for MUI's
  248.   Bitmap class. Source can be found in "MUI/Developer/C/Examples/",
  249.   usage examples are included in the screen manager's source code.
  250.  
  251. - Included classes to display tree structures.
  252.  
  253. - Introduced a new cycle chain system. All you have to do is to set
  254.   MUIA_CycleChain to 1 for every object that you want to have in your
  255.   chain, MUI does the rest automatically. The old
  256.   MUIM_Window_SetCycleChain will continue to work but is considered
  257.   obsolete.
  258.  
  259. - Implemented possibility to have custom builtin images in listviews.
  260.   No more need for external image files and other rubbish in your
  261.   applications. See psi.c ScreenList class and autodocs of
  262.   MUIM_List_CreateImage for details.
  263.  
  264. - Implemented full Drag&Drop facilities for all MUI objects. See
  265.   autodocs of MUIM_Drag#? in area class for details.
  266.  
  267. - Added a few new good-looking classes like level displays and turning
  268.   knobs. See slidorama demo for details.
  269.  
  270. - Rearranged class tree for slider-like classes that adjust numeric
  271.   values. See autodocs of numeric class and its subclasses for details.
  272.  
  273. - Implemented MUIM_Application_NewInput to improve behaviour of input
  274.   loops. MUIM_Application_Input will continue to work but is considered
  275.   obsolete.
  276.  
  277. - Implemented vertical bars in listviews with BAR/S switch for
  278.   MUIA_List_Format. See autodocs for details.
  279.  
  280.  
  281.  
  282. ------------------------------------------------------------------------
  283. Version 3.0 (10-Nov-95)                     (muimaster.library V11.3512)
  284. ------------------------------------------------------------------------
  285.  
  286. This was a special Computer 95 release and is not further documented.
  287.  
  288.  
  289.  
  290. ------------------------------------------------------------------------
  291. Version 2.3  (24-Dec-94)                      (muimaster.library V10.33)
  292. ------------------------------------------------------------------------
  293.  
  294. * MINOR SASG UPDATE *
  295.  
  296. Sorry, this update is a little smaller than usual. The reason is
  297. simple, I was on a long holiday trip during the last months. :-)
  298.  
  299. Changes for users:
  300.  
  301. - Online help works again (but only synchronous) for 2.x systems.
  302.  
  303. - Improved smooth scrolling for listviews with many entries.
  304.  
  305. - Prefs program fits on an NTSC 640x200 screen with topaz/8.
  306.  
  307. - Popup hotkey is filtered in string gadget input.
  308.  
  309. Changes for programmers:
  310.  
  311. - MUIA_String_MaxLen is gettable.
  312.  
  313. - MUIA_ControlChar works for listview class.
  314.  
  315. - Dirlist object returns correct file dates.
  316.  
  317. - MUIA_Dirlist_Directory is get()able.
  318.  
  319. - Implemented MUIA_Window_MouseObject & MUIA_Window_NeedsMouseObject
  320.   attributes for immediate online help. See autodocs & Settings demo
  321.   for details.
  322.  
  323. - Added some support for the GCC compiler (include/inline/muimaster.h).
  324.  
  325. - Implemented MUIA_Listview_ScrollerPos tag to specify the position of
  326.   the scrollbar in a listview.
  327.  
  328. - Fixed some problems with string gadgets and attached lists.
  329.  
  330. - Implemented MUIA_Application_UseRexx/UseCommodities attributes.
  331.   Set to FALSE to disable the builtin ARexx/Commodities handling.
  332.   Don't do this unless you have a very good reason!
  333.  
  334. - Boopsi objects in virtual groups are handled like string gadgets,
  335.   they only appear when they're completely visible.
  336.  
  337. - Implemented MUIV_Notify_Self, MUIV_Notify_Window and
  338.   MUIV_Notify_Application special values to simplify notification
  339.   mechanism. See autodocs of notify class (MUIM_Notify) for details.
  340.  
  341. - Note: If you have questions or suggestions about MUI, please do
  342.   *not* ask me directly. Write to the MUI mailing list instead:
  343.   To subscribe, send mail to <listserv@taloa.unice.fr> with
  344.   an empty subject and a line containing the magic words
  345.   SUB mui Your Name
  346.  
  347.  
  348.  
  349. ------------------------------------------------------------------------
  350. Version 2.2  (08-Aug-94)                       (muimaster.library V9.80)
  351. ------------------------------------------------------------------------
  352.  
  353. * MINOR SASG UPDATE *
  354.  
  355. Changes for users:
  356.  
  357. - There were some misunderstandings about SASG update rules. Unless
  358.   otherwise stated, all MUI updates are MINOR SASG UPDATES, i.e.
  359.   you are not required to update your keyfile. Major updates (maybe
  360.   one at the end of this year) will be specifically announced and
  361.   the MUI prefs program will tell you about it.
  362.  
  363. - When starting two or more MUI applications at the same time, there
  364.   was a chance that the keyfile was not recognized correctly.
  365.  
  366. - Fixed some installation script problems.
  367.  
  368. - Fixed a possible crash in the registration program.
  369.  
  370. - MUI 2.1 was accidently documented to require OS 2.1, that's of
  371.   course a documentation bug. MUI continues to run with 2.0.
  372.  
  373. - The serial number of a registered user is displayed in the prefs
  374.   programs about window.
  375.  
  376. - Because the MUI 2.1 default settings for HalfShine and HalfShadow
  377.   pen caused some confusion, they are back to standard MagicWB
  378.   rules (color n-4 and n-3) again.
  379.  
  380. - Fixed a bug in coloradjust class which caused wrong public screen
  381.   colors with V37.
  382.  
  383. - AmigaGuide online help works asynchronous for all MUI applications.
  384.  
  385. - Fixed some problems of listviews in virtual groups. Unfortunately,
  386.   some other problems are still there.
  387.  
  388. - Fixed cycle gadget lockup problem.
  389.  
  390. - Made window handling a bit more sensitive, MUI windows will now
  391.   look correctly even with non standard system gadget sizes.
  392.  
  393. - Prefs program terminates when receving a CTRL-C signal.
  394.  
  395. - Popup objects are controllable with a configurable hotkey.
  396.   See MUI-Prefs keyboard adjustment listview.
  397.  
  398. Changes for programmers:
  399.  
  400. - Autodocs for MUI_Redraw() didn't mention the important
  401.   fact that calling DoSuperMethod() is always the first
  402.   step in a custom classes MUIM_Draw method. Otherwise,
  403.   msg->flags is not set properly.
  404.  
  405. - Result of MUI_Redraw() changed from APTR to VOID.
  406.  
  407. - AppIcon notification works again.
  408.  
  409. - Implemented one-dimension virtual groups, useful e.g. for
  410.   button rows. See autodocs of MUIA_Scrollgroup_FreeHoriz and
  411.   MUIA_Scrollgroup_FreeVert for details.
  412.  
  413. - Getting MUIA_Disabled didn't work in previous releases.
  414.  
  415. - MUIA_Slider_Min und MUIA_Slider_Max are settable.
  416.  
  417. - Building subclasses of MUIC_Window is possible.
  418.  
  419. - Notify on MUIA_List_Entries works.
  420.  
  421. - Implemented MUIM_List_Move method to simplify moving entries
  422.   in a list. See autodocs for details.
  423.  
  424. - Implemented MUIA_Boopsi_Smart tag for better handling of "smart"
  425.   Boopsi classes, i.e. the freely distributable "editor.gadget".
  426.  
  427. - Implemented MUIM_NoNotifySet method for better handling of
  428.   bidirectional notifications (i.e. scrollbar <-> editorgadget).
  429.  
  430. - Implemented MUIA_List_InsertPosition to query position of
  431.   last inserted entry.
  432.  
  433. - Implemented MUIV_List_Remove_Selected for list class remove
  434.   method.
  435.  
  436. - Menuitem objects export & import their CHECKED state with
  437.   MUIM_Application_Save and MUIM_Application_Load.
  438.  
  439. - It's possible to include register groups in cycle chains.
  440.  
  441. - Implemented MUIA_Popobject_WindowHook to allow adjusting
  442.   cycle chains, default objects, etc. for popup objects.
  443.  
  444. - Programmers, please update "MUI.readme" in your distributions!
  445.  
  446.  
  447.  
  448. ------------------------------------------------------------------------
  449. Version 2.1  (03-Jul-94)                      (muimaster.library V8.697)
  450. ------------------------------------------------------------------------
  451.  
  452. * MINOR SASG UPDATE *
  453.  
  454. I planned to have a lot more new things for V2.1. Unfortunately, time
  455. was missing. Next versions of MUI will probably be split into a basic
  456. muimaster.library and a muifancy.library. The fancy library will hold
  457. all the additional features, users with low memory or slow machines may
  458. decide to leave out this stuff. For more infos, see the "Future" file
  459. in the developer archive.
  460.  
  461. Changes for users:
  462.  
  463. - From version 2.1 on, MUI is distributed under the rules of the SASG,
  464.   the Standardized Amiga Shareware Group. See the accompanying program
  465.   "Registration" for details.
  466.  
  467. - Screen preferences were not saved correctly sometimes.
  468.  
  469. - When changing the application with the preferences program,
  470.   MUI offers the possibility to use/save changed settings.
  471.  
  472. - Sliders can be configured to have their info text at the left side.
  473.  
  474. - Listview multiselect mode was sometimes triggered accidently.
  475.  
  476. - Enhanced popup menu configuration possibilities, including
  477.   custom background and frame settings and animated appearance.
  478.  
  479. - Removed the startup and shutdown command config options.
  480.  
  481. Changes for programmers:
  482.  
  483. - Implemented MUIV_NotTriggerValue. See autodocs of MUIM_Notify for
  484.   details.
  485.  
  486. - Fixed some autodoc syntax bugs, added version information for every
  487.   class and attribute.
  488.  
  489. - Implemented MUIA_Application_ForceQuit. See autodocs for details.
  490.  
  491. - Invisible or disabled objects don't trigger MUIA_AppMessage
  492.   notification anymore.
  493.  
  494. - Fixed Dirlist class problems with short directory names.
  495.  
  496. - When MUI fails to open a window, notifications on MUIA_Window_Open
  497.   are not triggered anymore.
  498.  
  499. - Fixed a little memory eating bug.
  500.  
  501. - Added a "often used object" collection to muimaster.library. You
  502.   should use this collection as frequently as possible instead of
  503.   building your own objects or using the supplied macros. See
  504.   autodocs of MUI_MakeObject() for details.
  505.  
  506. - Simplified the creation of labels with underscore. This makes
  507.   localization much easier. See autodocs of MUI_MakeObject()
  508.   for details.
  509.  
  510. - Added object oriented menus. See new demo program and autodocs of
  511.   menustrip, menu and menu item class for details.
  512.  
  513. - Controlling a slider object with keyboard accidently triggered
  514.   notification twice.
  515.  
  516. - Fixed problems when language specific special characters were
  517.   used as shortcut.
  518.  
  519. - Included documentation on how to write external public
  520.   custom classes. See developer docs and new examples in
  521.   "MUI/Developer/C/Examples/Classes" for details.
  522.  
  523. - Fixed a crash when the colorwheel.gadget was not available under V39.
  524.  
  525. - Implemented new builtin classes MUIC_Poplist, MUIC_Bitmap and
  526.   MUIC_Bodychunk. Just a few bytes of code but very useful.
  527.  
  528. - Rewrote some critical parts of MUI in assembler.
  529.  
  530. - Fixed a problem when MUIA_ShowMe was used on groups.
  531.  
  532. - Implemented MUIA_Window_FancyDrawing for highspeed programs.
  533.  
  534. - Fixed some notification bugs for register objects.
  535.  
  536.  
  537.  
  538. ------------------------------------------------------------------------
  539. Version 2.0  (11-Feb-94)                      (muimaster.library V7.973)
  540. ------------------------------------------------------------------------
  541.  
  542. Changes for users:
  543.  
  544. - Rearranged libraries. Classes which are needed by all applications or
  545.   which are very small are integrated in muimaster.library. Fancy and
  546.   rarely used classes come as external files. This speeds up starting
  547.   the first MUI application and simplifies installation procedure for
  548.   commercial applications.
  549.  
  550. - Integration of classes increases performance significantly.
  551.  
  552. - Rearranged the prefs program completely. Major changes include
  553.   "single application" mode, image multiselect, presets and localization.
  554.   I cannot list all the other news here in detail, but together they should
  555.   make adjusting preferences a lot easier.
  556.  
  557. - Included beautiful new 8 color images, patterns and button designs from
  558.   Martin "MagicWB" Huttenloher. Give them a try!
  559.  
  560. - Fixed several screenmode requester bugs.
  561.  
  562. - Fixed problems with crazy going prop gadgets.
  563.  
  564. - Changed "active object" display. No more ugly active background but
  565.   instead a nice extra frame will be displayed.
  566.  
  567. - Getting the name of the used public screen is possible with
  568.   new ARexx command "info screen".
  569.  
  570. - Documented ARexx command error result codes.
  571.  
  572.  
  573. Changes for programmers:
  574.  
  575. - More detailed developer documentation including information about
  576.   writing custom classes and a MUI style guide. Read it!
  577.  
  578. - Included new demos "Class<n>" to show how to implement custom
  579.   classes.
  580.  
  581. - Added the ability to specify a listview multiselect type directly.
  582.   See MUIA_Listview_MultiSelect attribute for details.
  583.  
  584. - The MUIA_ShowMe attribute can be used to hide objects. Using this
  585.   attribute is even possible in open windows, hiding object will
  586.   then cause a new layout to take place. When necessary, the parent
  587.   window will be resized automatically. Included new demo program
  588.   "ShowHide".
  589.  
  590. - Implemented popstring, popasl, popobject classes for asynchronous
  591.   popups. popasl class is the recommended way to include file/font/etc.
  592.   requesters. Included new demo program "Popup" to demonstrate the new
  593.   popup classes.
  594.  
  595. - Added a register class. No, this is not for registrating your MUI,
  596.   its used to create flexible titled page groups. See the prefs
  597.   program and the pages demo for details.
  598.  
  599. - Added the ability to specify a listview multiselect type directly.
  600.   See MUIA_Listview_MultiSelect attribute for details.
  601.  
  602. - Implemented MUIM_List_InsertSingle method.
  603.  
  604. - Multiline entries ("foo\nbar") in a cycle gadget were not handled
  605.   correctly.
  606.  
  607. - Implemented MUIA_Rectangle_HBar and MUIA_Rectangle_VBar to create
  608.   nice single border lines.
  609.  
  610. - Implemented MUIM_MultiSet method, MUIA_NoNotify attribute and
  611.   MUIM_KillNotify method for notify class.
  612.  
  613. - Implemented MUIA_Gauge_InfoText attribute.
  614.  
  615. - Implemented MUIA_Listview_ClickColumn, MUIA_Listview_DefClickColumn.
  616.  
  617. - Fixed problem with MUIA_Application_Iconified notification.
  618.  
  619. - Implemented MUIV_List_Select_All for MUIM_List_Select method.
  620.  
  621. - Fixed some problems with sleeping windows and applications.
  622.  
  623. - MUIA_List_First and MUIA_List_Visible are really get()able.
  624.  
  625. - Fixed a problem with keyboard control for MUIA_Slider_Quiet sliders,
  626.   implemented MUIA_Slider_Reverse tag.
  627.  
  628. - Tag value and documentation for MUIA_List_Title attribute was
  629.   missing.
  630.  
  631. - Specifying images with "1:<x>" never worked, use "6:<x>" instead.
  632.   See MUIA_Image_Spec for details.
  633.  
  634. - MUI_Request() gadgets may contain '_' characters to indicate keyboard
  635.   shortcuts.
  636.  
  637. - Implemented MUIA_Application_RexxHook.
  638.  
  639. - Implemented MUIA_String_EditHook.
  640.  
  641.  
  642.  
  643. ------------------------------------------------------------------------
  644. Version 1.4  (27-Oct-93)                      (muimaster.library V6.435)
  645. ------------------------------------------------------------------------
  646.  
  647. From V1.4 on, MUI is distributed in two separate archives:
  648.   muiXXusr.lha - libraries, classes, demos, user documentation.
  649.   muiXXdev.lha - programmer interfaces and programmer documentation.
  650.  
  651.  
  652. Changes for users:
  653.  
  654. - Important Note:
  655.   Due to some enhancements in image processing, registered users will
  656.   have to readjust their image settings. Otherwise some images might
  657.   not be visible!
  658.  
  659. - I accept every currency for registration now. Please read the
  660.   registration section of the manual for details.
  661.  
  662. - Rearranged preferences program. Instead of many different windows,
  663.   page groups are used and should make things a lot easier.
  664.  
  665. - Implemented palette gadget for public screens.
  666.  
  667. - Added the possibility to use an RGB color as image (V39 and above).
  668.  
  669. - Implemented background pattern for screens (V39 and above).
  670.  
  671. - Background pictures allocate their colors correctly (V39 and above).
  672.  
  673. - Gauge frame and radio button spacing didn't work.
  674.  
  675. - Reduced flicker when resizing a window with a fancy background.
  676.  
  677. - Added configuration switch for window redraw type. Possible settings
  678.   are fast/ugly and slow/nice. Defaults to fast/ugly, which isn't really
  679.   really ugly but maybe faster.
  680.  
  681. - Added special screen type to address the frontmost public screen.
  682.  
  683. - Speeded up first drawing of a window.
  684.  
  685. - Fixed some simple refresh problems with page groups.
  686.  
  687. - Iconify Gadget wasn't visible on a one plane display.
  688.  
  689. - Improved text rendering speed about 20% (maybe even more if you have
  690.   some data cache).
  691.  
  692. - Made cycle popups blazingly fast and more configurable (frame setting).
  693.  
  694. - One gadget requesters can always be answered with the <Press> key.
  695.  
  696. - Two gadget requesters can always be answered with 'y' for the left
  697.   and 'n' for the right gadget.
  698.  
  699. - Requester buttons sometimes were layouted with no intermediate
  700.   spacing.
  701.  
  702. - Scrolling a partially obscured listview in a simple refresh window
  703.   would create some pixel garbage.
  704.  
  705. - Reasonably speeded up listview drawing, cursor handling and multi
  706.   selecting. Together with keyboard scrolling, display is even faster
  707.   if a listview's height is exactly a multiple of its line height.
  708.  
  709. - Implemented configuration switch for full line listviews. These
  710.   listviews won't show incomplete lines are and are somewhat
  711.   faster. Default are full line listviews.
  712.  
  713. - Fixed some public screen open and close problems.
  714.  
  715. - Tab size in floattext class was handled wrong.
  716.  
  717. - Eliminated first and last line flicker when scrolling listviews.
  718.  
  719. - Rearranged and rewrote parts of the documentation.
  720.  
  721. - Please read the manuals "Discussion" section before reporting
  722.   any problems!
  723.  
  724.  
  725. Changes for programmers:
  726.  
  727. - Attention... very powerful feature... :-)
  728.   Implemented virtual (scrolling) groups. Included new program
  729.   "Virtual" for demonstration.
  730.  
  731. - New color oriented classes: Colorfield, Coloradjust, Palette.
  732.  
  733. - Fixed vertical slider problem.
  734.  
  735. - Trying to create an object from a non existing class caused an
  736.   enforcer hit.
  737.  
  738. - Enabling a group containing prop/string gadgets didn't really enable
  739.   the gadgets.
  740.  
  741. - Implemented MUIM_WriteString and MUIM_WriteLong methods for easy
  742.   structure updating.
  743.  
  744. - Implemented MUIA_ControlChar for slider objects.
  745.  
  746. - MUIA_Group_ActivePage didn't trigger notification.
  747.  
  748. - Fixed some minor text engine bugs.
  749.  
  750. - During the execution of a MUIM_CallHook in a notify method,
  751.   other MUI tasks were locked.
  752.  
  753. - Implemented MUIA_Version and MUIA_Revision attributes to allow
  754.   version checking for applications.
  755.  
  756. - The number of the current entry is passed to a list display
  757.   hook as additional parameter.
  758.  
  759. - Setting a boopsi gadgets attributes didn't cause a display update.
  760.  
  761. - Setting MUIA_Background wouldn't always update the display.
  762.  
  763. - Children of MUIA_Group_SameXXXX groups could accidently be enlarged
  764.   beyond their maximum size.
  765.  
  766. - Implemented MUIA_Application_BrokerPri attribute.
  767.  
  768. - Implemented MUIA_Application_BrokerPort attribute. This port can
  769.   e.g. be used to add additional HotKeys with the HotKey() amiga.lib
  770.   function.
  771.  
  772. - Recognizing a press/release of a prop gadget is possible by
  773.   listening to the MUIA_Prop_Pressed attribute.
  774.  
  775. - Adding and removing members of groups could accidently change
  776.   the groups orientation.
  777.  
  778. - Implemented some new standard images concerning tape deck and network
  779.   issues.
  780.  
  781. - MUIM_Application_Get/SetMenuCheck didn't work.
  782.  
  783. - Some Modula and Oberon interface changes.
  784.  
  785. - Implemented MUIA_Slider_Quiet tag to hide the number output.
  786.  
  787. - Implemented MUIA_Dirlist_MultiSelDirs attribute.
  788.  
  789. - Implemented MUIA_Window_PublicScreen tag to force opening windows
  790.   on certain public screens.
  791.  
  792. - Implemented MUIM_List_NextSelected to help stepping through selected
  793.   entries of a list.
  794.  
  795. - Implemented MUIA_List_Title attribute to support titles for
  796.   (multi columned) lists.
  797.  
  798. - MUIA_List_Active wasn't reported during a MUIM_List_Clear.
  799.  
  800. - MUIA_List_Active was reported twice during a MUIM_List_Remove.
  801.  
  802. - MUIA_Boopsi_Object didn't trigger notification.
  803.  
  804. - Implemented default sizes for all classes. New windows will
  805.   be opened using these default sizes instead of
  806.   MUIV_Window_Width/Height_MinMax(10).
  807.  
  808. - Menu multi select didn't work.
  809.  
  810. - Autodocs are alphabetically sorted now.
  811.  
  812.  
  813.  
  814. ------------------------------------------------------------------------
  815. Version 1.3  (29-Aug-93)                      (muimaster.library V5.141)
  816. ------------------------------------------------------------------------
  817.  
  818. - MUIA_String_Secret string gadgets crashed on an 68000.
  819.  
  820. - Corrected assembler includes.
  821.  
  822. - Fixed bug with MUIA_Window_ActiveObject.
  823.  
  824.  
  825.  
  826. ------------------------------------------------------------------------
  827. Version 1.2  (28-Aug-93)                      (muimaster.library V5.140)
  828. ------------------------------------------------------------------------
  829.  
  830. - Fixed enforcer hits in ARexx HELP command.
  831.  
  832. - Setting MUIA_Background did not refresh the display.
  833.  
  834. - Added validity check on key description strings in prefs program.
  835.  
  836. - Initializing string or prop gadgets with MUIA_Disabled didn't really
  837.   disable the gadget.
  838.  
  839. - Fixed some sync problems with MUIA_String_Integer.
  840.  
  841. - Menu checkmarks would disappear when a window was closed and reopened.
  842.  
  843. - Specifying a non existing font caused windows to disappear.
  844.  
  845. - Included Manx, Assembler, Modula, Oberon and Amiga-E interfaces.
  846.  
  847. - Implemented MUIA_Window_Screen attribute. This allows opening a
  848.   MUI window on an explicitly defined intuition screen.
  849.  
  850. - Rewrote the image caching mechanism. This should fix some bugs
  851.   and system crashes with non existing external image files.
  852.  
  853. - Fixed a bad bug that could trash the stack under certain
  854.   circumstances.
  855.  
  856. - MUIA_Selected didn't work at object creation time.
  857.  
  858. - Better MOUSEMOVE and INTUITICKS handling to improve performance.
  859.  
  860. - Using simple refresh windows would sometimes freeze the system.
  861.  
  862. - Attention... very powerful feature... :-)
  863.   Implemented two new attributes for group class:
  864.   MUIA_Group_PageMode   (TRUE/FALSE)      this group is a page group.
  865.   MUIA_Group_ActivePage (0...numchilds-1) this child shall be displayed.
  866.   Page groups always show exactly one of their childs. The number of
  867.   this child can be changed dynamically, even in an open window.
  868.   New demo "Pages" demonstrates the new page groups.
  869.  
  870. - Included AppWindow support. See MUIA_Window_AppWindow,
  871.   MUIA_Application_DropObject and MUIA_AppMessage for details.
  872.   New demo "AppWindow" for demonstration.
  873.  
  874. - Bumped version number of all libs to 5. You must not mix MUI
  875.   classes and libraries with different version numbers, this
  876.   will lead into problems. Revision numbers are uncritical.
  877.   Note: This does not affect applications. They will of course
  878.   work with all MUI releases, as long as all version numbers
  879.   are identical.
  880.  
  881. - Included version number checking. MUI will refuse to open
  882.   classes when the class version doesn't match the master
  883.   library. Note: when I'm sure about internal class communication
  884.   (maybe in a few months...), this check will become obsolete.
  885.  
  886.  
  887.  
  888. ------------------------------------------------------------------------
  889. Version 1.1  (15-Aug-93)                       (muimaster.library V4.58)
  890. ------------------------------------------------------------------------
  891.  
  892. - Removed a remaining serial debug output.
  893.  
  894. - Corrected installation script for 2.x systems.
  895.  
  896. - Corrected HELP: assign of "StartMeFirst" script.
  897.  
  898. - Corrected some autodocs and header file bugs.
  899.  
  900. - Added system configuration switch to adjust window refresh
  901.   type, possibilities are simple refresh and smart refresh.
  902.  
  903. - Made some changes to the Oberon interface.
  904.  
  905. - String gadgets with an invisible font ate some bytes of memory.
  906.  
  907. - Fixed some bugs with failing boopsi images.
  908.  
  909. - Some minor changes to some of the demo programs.
  910.  
  911. - Speeded object creation about 10%.
  912.  
  913. - For boopsi image implementors: boopsi images now have the ability
  914.   to specify a desired minimum and maximum size. See "mui.h"
  915.   for details.
  916.  
  917. - Implemented MUIA_Window_DefaultObject attribute. See autodocs
  918.   for details.
  919.  
  920. - Added some new boopsi images.
  921.  
  922. - Implemented MUIA_ControlChar for radio buttons. Pressing
  923.   the control char will activate the next (shift -> previous)
  924.   radio button element.
  925.  
  926. - Implemented MUIA_ControlChar for string gadgets. Pressing
  927.   the control char will activate the gadget.
  928.  
  929. - Added some more keyboard shortcuts to the prefs program.
  930.  
  931. - Minimum width for MUIA_Window_SizeRight windows was calculated wrong.
  932.  
  933. - Last characters of some text fields were not displayed with
  934.   certain fonts.
  935.  
  936.  
  937.  
  938. ------------------------------------------------------------------------
  939. Version 1.0  (08-Aug-93)                        (muimaster.library V4.4)
  940. ------------------------------------------------------------------------
  941.  
  942. - Initial Release.
  943.